home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / DISK_UTL / WINTIDY / WINTIDY.DPR < prev    next >
Text File  |  1996-04-15  |  242b  |  15 lines

  1. program WinTidy;
  2.  
  3. uses
  4.   Forms,
  5.   MainForm in 'MainForm.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.Title := 'David''d Windows Tidy';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.